    /* 1. CORE RESET & BASE */
    .fb-patch-scope {
        background: #0a0a0a;
        color: #fff;
        font-family: 'Inter', -apple-system, sans-serif;
        line-height: 1.6;
        overflow-x: hidden;
    }

    .fb-patch-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
        margin-top: 50px;
    }

    /* 2. TYPOGRAPHY (Left Aligned Titles) */
    .fb-patch-title {
        font-size: clamp(1.6rem, 5vw, 2.4rem);
        font-weight: 800;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 15px;
        text-align: left;
    }

    .fb-patch-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 5px;
        background: #ffcc00;
    }

    .fb-patch-title span {
        color: #ffcc00;
    }

    .fb-patch-center {
        text-align: left;
        margin-bottom: 40px;
    }

    /* Changed to left */

    /* 3. HERO SECTION (Updated to Left Align) */
    .fb-patch-hero {
        padding: clamp(60px, 12vh, 150px) 0;
        background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('https://images.unsplash.com/photo-1558494949-ef010cbdcc48?q=80&w=1600') center/cover;
        text-align: left;
        /* Image ke hisab se left align */
    }

    .fb-patch-badge {
        color: #ffcc00;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 2px;
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 10px;
    }

    .fb-patch-h1 {
        font-size: clamp(2.2rem, 7vw, 4rem);
        font-weight: 900;
        margin: 15px 0;
        line-height: 1.1;
    }

    .fb-patch-h1 span {
        color: #ffcc00;
    }

    .fb-patch-p {
        max-width: 600px;
        /* Text thoda narrow rakha hai taki professional lage */
        margin: 0 0 35px 0;
        /* Margin left hataya */
        color: #bbb;
        font-size: 1.1rem;
    }

    .fb-patch-btn-wrap {
        display: flex;
        gap: 15px;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    /* Buttons also left aligned */

    /* 4. BUTTONS */
    .fb-patch-btn-y {
        background: #ffcc00;
        color: #000;
        padding: 14px 32px;
        text-decoration: none;
        font-weight: 800;
        border-radius: 4px;
        transition: 0.3s;
        display: inline-block;
    }

    .fb-patch-btn-w {
        border: 2px solid #fff;
        color: #fff;
        padding: 12px 32px;
        text-decoration: none;
        font-weight: 800;
        border-radius: 4px;
        transition: 0.3s;
        display: inline-block;
    }

    .fb-patch-btn-y:hover {
        background: #fff;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(255, 204, 0, 0.2);
    }

    /* 5. SECTIONS & GRIDS */
    .fb-patch-section {
        padding: clamp(40px, 8vh, 80px) 0;
    }

    .fb-patch-bg-dark {
        background: #050505;
    }

    .fb-patch-split {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .fb-patch-resp-img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        border: 1px solid #333;
        display: block;
    }

    .fb-patch-icons {
        display: flex;
        gap: 15px;
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .fb-patch-i-box {
        font-weight: 700;
        color: #ffcc00;
        border: 1px solid #ffcc00;
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 0.85rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .fb-patch-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .fb-patch-card {
        background: #111;
        border-radius: 15px;
        overflow: hidden;
        border: 1px solid #222;
        transition: 0.4s;
        display: flex;
        flex-direction: column;
    }

    .fb-patch-card-img {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }

    .fb-patch-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .fb-patch-card-body {
        padding: 25px;
    }

    .fb-patch-gold {
        border-color: #ffcc00;
    }

    .fb-patch-dual {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .fb-patch-list-box {
        padding: clamp(25px, 5vw, 40px);
        border-radius: 15px;
        background: #111;
        border: 1px solid #222;
    }

    .fb-patch-yellow-bg {
        background: #ffcc00;
        color: #000;
        border: none;
    }

    .fb-patch-ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .fb-patch-ul li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
        padding-left: 30px;
        font-weight: 600;
        text-align: left;
    }

    .fb-patch-ul li::before {
        content: '✔';
        position: absolute;
        left: 0;
        color: #ffcc00;
    }

    .fb-patch-yellow-bg .fb-patch-ul li::before {
        color: #000;
    }

    /* 8. MEDIA QUERIES */

    @media (max-width: 992px) {

        /* Tablet par bhi design cleaner lagega */
        .fb-patch-split,
        .fb-patch-dual {
            grid-template-columns: 1fr;
        }

        .fb-patch-img-box {
            order: -1;
        }
    }

    @media (max-width: 600px) {
        .fb-patch-hero {
            text-align: center;
            padding: 60px 0;
        }

        /* Mobile par bhi left hi rahega */
        .fb-patch-btn-wrap {
            flex-direction: column;
        }

        .fb-patch-btn-y,
        .fb-patch-btn-w {
            width: 100%;
            text-align: center;
        }

        .fb-patch-h1 {
            font-size: 2.4rem;
        }
    }